Finds items with keys greater than the specified value.

Implements IIndexScanner(T).FindGreater(object,bool,Order)

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public IndexQuery<T> FindGreater(
	Object key,
	bool inclusive,
	Order order
)
Visual Basic
Public Function FindGreater ( _
	key As Object, _
	inclusive As Boolean, _
	order As Order _
) As IndexQuery(Of T)

Parameters

key
Type: System..::..Object
Minimum key value to search for.
inclusive
Type: System..::..Boolean
If true, the result includes items with the specified key value. Otherwise, the result only includes those with keys strictly greater than the specified value.
order
Type: C1.LiveLinq..::..Order
Optionally specifies the order of the key values to sort the result (Order.Unordered if sorting is not required).

Return Value

An object enumerating all items whose key values are greater than the specified value.

Implements

IIndexScanner<(Of <(<'T>)>)>..::..FindGreater(Object, Boolean, Order)

See Also